2b2dab4f9acc3f5650c99d7b2a1c9cb4d75652e4,cspi-services/src/main/java/org/collectionspace/chain/csp/persistence/services/vocab/ConfiguredVocabStorage.java,ConfiguredVocabStorage,get,#ContextualisedStorage#CSPRequestCredentials#CSPRequestCache#String#String#Record#,816

Before Change


		JSONArray itemarray = new JSONArray();
//get list view

		String node = "/"+thisr.getServicesListPath().split("/")[0]+"/*";
		JSONObject data = getListView(creds,cache,filePath,node,"/"+thisr.getServicesListPath(),"csid",false, thisr);
		

		String[] filepaths = (String[]) data.get("listItems");

After Change


		JSONArray itemarray = new JSONArray();
//get list view

		JSONObject data = getListView(creds,cache,filePath,thisr.getServicesListPath(),"csid",false, thisr);

		String[] filepaths = (String[]) data.get("listItems");
		for(String uri : filepaths) {